home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Development Libraries / SGI IRIX 6.2 Development Libraries.iso / dist / complib.idb / usr / share / catman / p_man / cat3 / complib / ztrevc.z / ztrevc
Text File  |  1996-03-14  |  6KB  |  199 lines

  1.  
  2.  
  3.  
  4. ZZZZTTTTRRRREEEEVVVVCCCC((((3333FFFF))))                                                          ZZZZTTTTRRRREEEEVVVVCCCC((((3333FFFF))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      ZTREVC - compute some or all of the right and/or left eigenvectors of a
  10.      complex upper triangular matrix T
  11.  
  12. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  13.      SUBROUTINE ZTREVC( SIDE, HOWMNY, SELECT, N, T, LDT, VL, LDVL, VR, LDVR,
  14.                         MM, M, WORK, RWORK, INFO )
  15.  
  16.          CHARACTER      HOWMNY, SIDE
  17.  
  18.          INTEGER        INFO, LDT, LDVL, LDVR, M, MM, N
  19.  
  20.          LOGICAL        SELECT( * )
  21.  
  22.          DOUBLE         PRECISION RWORK( * )
  23.  
  24.          COMPLEX*16     T( LDT, * ), VL( LDVL, * ), VR( LDVR, * ), WORK( * )
  25.  
  26. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  27.      ZTREVC computes some or all of the right and/or left eigenvectors of a
  28.      complex upper triangular matrix T.
  29.  
  30.      The right eigenvector x and the left eigenvector y of T corresponding to
  31.      an eigenvalue w are defined by:
  32.  
  33.                   T*x = w*x,     y'*T = w*y'
  34.  
  35.      where y' denotes the conjugate transpose of the vector y.
  36.  
  37.      If all eigenvectors are requested, the routine may either return the
  38.      matrices X and/or Y of right or left eigenvectors of T, or the products
  39.      Q*X and/or Q*Y, where Q is an input unitary
  40.      matrix. If T was obtained from the Schur factorization of an original
  41.      matrix A = Q*T*Q', then Q*X and Q*Y are the matrices of right or left
  42.      eigenvectors of A.
  43.  
  44.  
  45. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  46.      SIDE    (input) CHARACTER*1
  47.              = 'R':  compute right eigenvectors only;
  48.              = 'L':  compute left eigenvectors only;
  49.              = 'B':  compute both right and left eigenvectors.
  50.  
  51.      HOWMNY  (input) CHARACTER*1
  52.              = 'A':  compute all right and/or left eigenvectors;
  53.              = 'B':  compute all right and/or left eigenvectors, and
  54.              backtransform them using the input matrices supplied in VR and/or
  55.              VL; = 'S':  compute selected right and/or left eigenvectors,
  56.              specified by the logical array SELECT.
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. ZZZZTTTTRRRREEEEVVVVCCCC((((3333FFFF))))                                                          ZZZZTTTTRRRREEEEVVVVCCCC((((3333FFFF))))
  71.  
  72.  
  73.  
  74.      SELECT  (input) LOGICAL array, dimension (N)
  75.              If HOWMNY = 'S', SELECT specifies the eigenvectors to be
  76.              computed.  If HOWMNY = 'A' or 'B', SELECT is not referenced.  To
  77.              select the eigenvector corresponding to the j-th eigenvalue,
  78.              SELECT(j) must be set to .TRUE..
  79.  
  80.      N       (input) INTEGER
  81.              The order of the matrix T. N >= 0.
  82.  
  83.      T       (input/output) COMPLEX*16 array, dimension (LDT,N)
  84.              The upper triangular matrix T.  T is modified, but restored on
  85.              exit.
  86.  
  87.      LDT     (input) INTEGER
  88.              The leading dimension of the array T. LDT >= max(1,N).
  89.  
  90.      VL      (input/output) COMPLEX*16 array, dimension (LDVL,MM)
  91.              On entry, if SIDE = 'L' or 'B' and HOWMNY = 'B', VL must contain
  92.              an N-by-N matrix Q (usually the unitary matrix Q of Schur vectors
  93.              returned by ZHSEQR).  On exit, if SIDE = 'L' or 'B', VL contains:
  94.              if HOWMNY = 'A', the matrix Y of left eigenvectors of T; if
  95.              HOWMNY = 'B', the matrix Q*Y; if HOWMNY = 'S', the left
  96.              eigenvectors of T specified by SELECT, stored consecutively in
  97.              the columns of VL, in the same order as their eigenvalues.  If
  98.              SIDE = 'R', VL is not referenced.
  99.  
  100.      LDVL    (input) INTEGER
  101.              The leading dimension of the array VL.  LDVL >= max(1,N) if SIDE
  102.              = 'L' or 'B'; LDVL >= 1 otherwise.
  103.  
  104.      VR      (input/output) COMPLEX*16 array, dimension (LDVR,MM)
  105.              On entry, if SIDE = 'R' or 'B' and HOWMNY = 'B', VR must contain
  106.              an N-by-N matrix Q (usually the unitary matrix Q of Schur vectors
  107.              returned by ZHSEQR).  On exit, if SIDE = 'R' or 'B', VR contains:
  108.              if HOWMNY = 'A', the matrix X of right eigenvectors of T; if
  109.              HOWMNY = 'B', the matrix Q*X; if HOWMNY = 'S', the right
  110.              eigenvectors of T specified by SELECT, stored consecutively in
  111.              the columns of VR, in the same order as their eigenvalues.  If
  112.              SIDE = 'L', VR is not referenced.
  113.  
  114.      LDVR    (input) INTEGER
  115.              The leading dimension of the array VR.  LDVR >= max(1,N) if SIDE
  116.              = 'R' or 'B'; LDVR >= 1 otherwise.
  117.  
  118.      MM      (input) INTEGER
  119.              The number of columns in the arrays VL and/or VR. MM >= M.
  120.  
  121.      M       (output) INTEGER
  122.              The number of columns in the arrays VL and/or VR actually used to
  123.              store the eigenvectors.  If HOWMNY = 'A' or 'B', M is set to N.
  124.              Each selected eigenvector occupies one column.
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. ZZZZTTTTRRRREEEEVVVVCCCC((((3333FFFF))))                                                          ZZZZTTTTRRRREEEEVVVVCCCC((((3333FFFF))))
  137.  
  138.  
  139.  
  140.      WORK    (workspace) COMPLEX*16 array, dimension (2*N)
  141.  
  142.      RWORK   (workspace) DOUBLE PRECISION array, dimension (N)
  143.  
  144.      INFO    (output) INTEGER
  145.              = 0:  successful exit
  146.              < 0:  if INFO = -i, the i-th argument had an illegal value
  147.  
  148. FFFFUUUURRRRTTTTHHHHEEEERRRR DDDDEEEETTTTAAAAIIIILLLLSSSS
  149.      The algorithm used in this program is basically backward (forward)
  150.      substitution, with scaling to make the the code robust against possible
  151.      overflow.
  152.  
  153.      Each eigenvector is normalized so that the element of largest magnitude
  154.      has magnitude 1; here the magnitude of a complex number (x,y) is taken to
  155.      be |x| + |y|.
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.                                                                         PPPPaaaaggggeeee 3333
  196.  
  197.  
  198.  
  199.